home *** CD-ROM | disk | FTP | other *** search
/ Floppyshop 2 / Floppyshop - 2.zip / Floppyshop - 2.iso / diskmags / 0022-3.564 / dmg-0124 / 259.txt < prev    next >
Text File  |  1997-04-16  |  27KB  |  697 lines

  1.  
  2. Info-Atari16 Digest         Thu,  9 May 91       Volume 91 : Issue 259
  3.  
  4. Today's Topics:
  5.                          ATARI ARCHIVES HELP
  6.                       Can GCC treat printer like
  7.              Chq Inc. and other post-AtariFest questions
  8.                          Digestes are damaged
  9.                                 GEMINI
  10.                   Info about the Windsor Atari Show
  11.                       MEGA STe VS. STe (2 msgs)
  12.                      Multisynch Monitors (2 msgs)
  13.                               Neodesk 3
  14.                             One Last Wish
  15.                      Question: Pascal for the ST?
  16.                      Sounds files from Australia
  17.                            ST zoo for Unix
  18.                            TOS Command Line
  19.                    WordPerfect update - STe support
  20.  
  21. Welcome to the Info-Atari16 Digest.  The configuration for the automatic
  22. cross-posting to/from Usenet is getting closer, but still getting thrashed
  23. out.  Please send notifications about broken digests or bogus messages
  24. to Info-Atari16-Request@NAUCSE.CSE.NAU.EDU.
  25.  
  26. Please send requests for un/subscription and other administrivia to
  27. Info-Atari16-Request, *NOT* Info-Atari16.  Requests that go to the list
  28. instead of the moderators are likely to be lost or ignored.
  29.  
  30. If you want to unsubscribe, and you're receiving the digest indirectly
  31. from someplace (usually a BITNET host) that redistributes it, please
  32. contact the redistributor, not us.
  33. ----------------------------------------------------------------------
  34.  
  35. Date: 9 May 91 05:19:48 GMT
  36. From: munnari.oz.au!diemen!ecc.tased.oz.au!ecc_foley@uunet.uu.net
  37. Subject: ATARI ARCHIVES HELP
  38. To: Info-Atari16@naucse.cse.nau.edu
  39.  
  40. Hi all,
  41. I have recently tried to receive files from both panarthea and terminator
  42. archives, but I only receive a mail message from panarthea with the subject
  43. "Returned mail - User Unknown". I can obtain help and indexes from both
  44. the servers but not archieved files. I have tried specifying a path name,
  45. both ecc_foley@ecc.tased.oz.au and ecc_foley@ecc.uccp , but I still get a
  46. massage about user unknown. Does anybody know why this is happening ?
  47. Many Thanks
  48.         Rodney Foley (ecc_foley@ecc.tases.oz.au)
  49.         Elizabeth Computer Centre
  50.         Australia
  51.  
  52. ------------------------------
  53.  
  54. Date: 8 May 91 22:13:50 GMT
  55. From:
  56.  noao!ncar!elroy.jpl.nasa.gov!swrinde!cs.utexas.edu!sun-barr!ccut!wnoc-tyo-news!
  57.  toumon!wucc!ytsuji@arizona.edu (Y.Tsuji)
  58. Subject: Can GCC treat printer like
  59. To: Info-Atari16@naucse.cse.nau.edu
  60.  
  61. It's up to you whether to make use of the TOS Fopen() or not when you
  62. implement your own open() in your own C library. For ordinary files,
  63. the value returned will be similar to what other OS (i.e. unix) expects,
  64. but when it comes to raw devices (/dev/tty,/dev/lpt,/dev/fd0 etc), you
  65. need to be a bit inventive. What I have done is this:
  66.  (1) for keyboard/monitor, parallel port, and RS232C port, the returned
  67.       value by Fopen will be respected but not used. Instead values 128,
  68.       129,130 will be given. (The returned value of fffe etc will be kept
  69.       internally).
  70.  (2) for other devices e.g. disk drives and midi ports, the same trick
  71.      will be applied. drive A will be assigned 256, drive B 257 etc.
  72.      However, as drives are block devices, read/write and lseek can be
  73.      done only in units of 512. And we must keep a file pointer for each
  74.      device. There is no way of knowing the basic features of the device
  75.      as read/write is normally done to disks that are physically formatted
  76.      but may lack boot sector info. I simply followed the nomenclature of
  77.      minix.
  78.  
  79. At any event, I needed a file descriptor table internally that keeps info
  80. to be given to stat() and fstat(). That table also keeps the name of the
  81. file descriptor (I sometimes needed to know the name of the file from the
  82. file descriptor). Read/write of raw device is necessary in such cases as
  83. reformatter(re-initialises the boot sector,FATs and directory) and TAR.
  84.  
  85. Another thing I needed to use my brain a bit is giving i-node numbers(
  86. real id number of files). I think I better keep this secret to myself so
  87. as not to bore you to death.
  88. Dr Y. Tsuji
  89. ytsuji@cfi.waseda.ac.jp
  90.  
  91. ------------------------------
  92.  
  93. Date: 8 May 91 21:32:13 GMT
  94. From:
  95.  bonnie.concordia.ca!news-server.csri.toronto.edu!utgpu!watserv1!watmath!darolos
  96.  o@uunet.uu.net (Dani A. Roloson)
  97. Subject: Chq Inc. and other post-AtariFest questions
  98. To: Info-Atari16@naucse.cse.nau.edu
  99.  
  100. 1) Does anyone know the status of the Clip-Art and Icon disks
  101.    that were being sold by Chq Inc. at the show?
  102.    Are they PD, shareware, or commercial?
  103.    There wasn't any readme file on any of the disks I got.
  104.  
  105. 2) Is anyone associated with AIM?
  106.    I picked up the complete animation set plus the show disk and
  107.    all the ST ones work fine except for WERWELTV.SEQ which gets
  108.    a "File Format Error".
  109.  
  110. 3) Is anyone associated with MAGIC?
  111.    I picked up the clip-art disks 143 and 148 and I am unable to
  112.    copy the last parts of both disks without getting
  113.    "Data on the disk in drive A: may be damaged."
  114.  
  115. Dani Roloson
  116. KWEST
  117. Kitchener-Waterloo Eight Sixteen Thirty-two Atari User Group
  118.  
  119. ------------------------------
  120.  
  121. Date: Thu, 09 May 91 12:38
  122. From: "Grupp , Andreas"
  123.  <JG05%DKAUNI2.BITNET@CUNYVM.CUNY.EDU>
  124. Subject: Digestes are damaged
  125. To: Atari ST Info Liste           <INFO-ATARI16@naucse.cse.nau.edu>
  126.  
  127. Hello,
  128. since several weeks, I often get only the header of a digest
  129. whitout the text. Does anybody know the reason for this?
  130. I also have tried to send a message like this one but i suppose
  131. it has never arrived. (Hope that this one does).
  132. Andreas
  133.  
  134. ------------------------------
  135.  
  136. Date: 8 May 91 18:30:54 GMT
  137. From: bu.edu!bucsf.bu.edu!harryk@uunet.uu.net (Harry Karayiannis)
  138. Subject: GEMINI
  139. To: Info-Atari16@naucse.cse.nau.edu
  140.  
  141. In article <A2504857254@thelake.mn.org> steve@thelake.mn.org (Steve Yelvington)
  142.  writes:
  143. >[In article <80943@bu.edu.bu.edu>,
  144. >     harryk@bucsf.bu.edu (Harry Karayiannis) writes ... ]
  145. >
  146. > >>3. How do I add icons to Gemini ?? I've done it using a resource
  147. > >>   editor but the small and large icons don't quite measure up/match
  148. > >>   (meaning --> If I make a large icon and a small icon for the same
  149. > >>   program to use, how do I put them in the resource so that they line
  150. > >>   up when assigning them to a file ?)
  151. > >
  152. > >   Well, I don't really understand this question because, in Gemini, there is
  153. > > no need for a small icon to line up with a large icon. Gemini can display
  154. > > either large or small icons...but *not* both on the desktop.
  155.                                   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  156.   I am sorry....I meant to write "but *not* both in the windows"
  157.   Gemini can definitely display both large & small icons on the desktop
  158.  
  159. >Thanks for the explanation of how to edit icons. GEnie has a couple
  160. >of files of add-on icons. Unfortunately, I don't think you can combine
  161. >*.RSC files with the Mark Williams resource editor, which is the best
  162. >of the three I have. Are others more flexible?
  163.  
  164.  You are welcome Steve. Unfortunately I don't have an account on GEnie
  165.  I cannot afford it 8*(
  166.  
  167.  I think there is no resource editor combining *.RSC files...I am also
  168. using Mark Williams' and I've worked with RCP (comes with Laser C), RCS
  169. (from Digital Research), and MKRSC (posted to the net). None of them let
  170. you merge *.RSC files.
  171.  
  172.   But why should someone combine 2 *.RSC files in 1? I don't see any reason
  173. for doing something like that. (I may be wrong)
  174.  Perhaps you misunderstood(?) my explanation of mixing large & small icons
  175. in the _same_ RSC file. I said one can put large & small icons in the same
  176. tree (e.g. FORM2 or FORM3) in the file GEMINIIC.RSC (so, it is just one
  177. resource file). If I remember well, I also said that I don't think it would
  178. be such a good idea. It would result in having both large & small icons in
  179. the same window. I haven't tried it though.
  180.  
  181.  
  182.   BTW, are there people still using NeoDesk? 8*)
  183.  
  184. > ----
  185. > Steve Yelvington, Marine on St. Croix, Minnesota, USA / steve@thelake.mn.org
  186.  
  187.  
  188.  
  189. ===============================================================================
  190.                              Harry Karayiannis          Post:
  191.       ||   |#   ||                                        15 N.Beacon, #316
  192.      |#|  ||#|  |#|          Boston University            Allston, MA 02134
  193.      |#|  ||#|  |#|          Computer Science Dpt.        U.S.A.
  194.     |##|  ||#|  |##|                                    _______________________
  195.     ||#|  ||#|  ||#|                                   |INTERnet:
  196.    ////   ||||   \\\\        % fortune -o              |  harryk@bucsf.bu.edu
  197.  /////    ||||    \\\\\      "Hackers do it with       |BITnet:
  198. ///// ATARI ST     \\\\\      fewer instructions"      |  cscrzcc@buacca.bu.edu
  199. =======================================================|_______________________
  200.  
  201. ------------------------------
  202.  
  203. Date: 8 May 91 20:30:39 GMT
  204. From:
  205.  noao!ncar!zaphod.mps.ohio-state.edu!pacific.mps.ohio-state.edu!ohstpy!miavx1!rl
  206.  collins@arizona.edu (Ryan 'Gozar' Collins)
  207. Subject: Info about the Windsor Atari Show
  208. To: Info-Atari16@naucse.cse.nau.edu
  209.  
  210. This past weekend I attended the Windsor Atari show, so I thought I
  211. would let everyone know what happened there. (this is all from memory,
  212. so some things might be wrong.)
  213.  
  214. Stacy's, Mega STe's, and TT's were all around. (I think I saw only three
  215. or four 1040 ST's, and they weren't doing much.) Gadgets by Small was
  216. there, showing the 33 MHz 68030 upgrade board for ST's. (Even for 1040
  217. ST's, but it does require you to put your computer into a bigger case.)
  218. I didn't get to play with it though.
  219.  
  220. Atari had a booth there, with some ingenius "pop-up" bochures for the
  221. Mega STe and the TT.
  222.  
  223. The seminars were where most of the good stuff came from though!
  224.  
  225. Bob Brodie for US Atari and Jeff "something" from Canada Atari talked
  226. for a little while, and then held a Q&A session. Some of the key points
  227. are:
  228.  
  229. FSM GDOS will cost <$100, but I don't remember a release date. (He (Bob)
  230. didn't give a definate date though)
  231.  
  232. Atari has purchased the source code to Word Up! but Bob couldn't say
  233. what for.
  234.  
  235. All Mega STe's and TT's have the drive controller chip socketed so that
  236. a 1.44M drive upgrade would be simple. Their engineers in Israel have
  237. reverse engineered the WD1772? chip.
  238.  
  239. They plan on phasing out the Stacy in favor of the ST notebook, which
  240. will be shown at Fall Comdex.
  241.  
  242. The 8-bit computers are being phased out also. Reasons were that a 130XE
  243. with disk drive comes real close to the price of a 520STFM.
  244.  
  245. Thats about everything I can remember now, I wish I would've took a tape
  246. recorder with me, or at least a notebook!! (I will be prepared for the
  247. next one though. (In Chicago in November)
  248.  
  249. Anyway, this was my first Atari show, and it was kinda neat to be able
  250. to places faces with names.
  251.  
  252. Later.....
  253.  
  254. ------------------------------------------------------------------------------
  255. Ryan 'Gozar' Collins      Question for MAC Users:      rlcollins@miavx1.BITNET
  256.    ||||   Power Without    What IS the format of a     rc1dsanu@miamiu.BITNET
  257.   / || \  The Price!!       MAC HFS floppy disk?       R.COLLINS1 on GEnie
  258. ------------------------------------------------------------------------------
  259.  
  260. ------------------------------
  261.  
  262. Date: 8 May 91 15:17:23 GMT
  263. From:
  264.  noao!ncar!elroy.jpl.nasa.gov!sdd.hp.com!wuarchive!emory!att!linac!midway!msuinf
  265.  o!kira!schultzd@arizona.edu (Count Zero ... Interrupt)
  266. Subject: MEGA STe VS. STe
  267. To: Info-Atari16@naucse.cse.nau.edu
  268.  
  269. This summer, I hope to have enough money to upgrade from my lowly
  270. 520ST (which has saved my butt quite a few times in the last year) to
  271. a new STe.  My question...  I need prices / specs on the STe (4meg) vs
  272. MEGA STe (4meg)).  Of course, since they use SIMMS for memory, the
  273. 4meg isn'y near as important.  The MEGA is 16MHz while the STe is only
  274. 8, right?
  275.  
  276. Basically need PRICE along with any thing else relevant.
  277.  
  278. THIS was already hashed out earlier in the year, so stick to e-mail
  279. replies...
  280.  
  281. Later...
  282. --
  283.   |||   David W. Schultz                                           |||
  284.   |||   uunet[!rutgers!mailrus]!frith!schultzd                     |||
  285.  / | \  Work Phone: (517)-353-8891                                / | \
  286. /  |  \ "All I see Pornographitti, All I hear Pornographitti..." /  |  \
  287.  
  288. ------------------------------
  289.  
  290. Date: 9 May 91 10:13:12 GMT
  291. From: mcsun!ukc!warwick!csuab@uunet.uu.net (Steve Strong)
  292. Subject: MEGA STe VS. STe
  293. To: Info-Atari16@naucse.cse.nau.edu
  294.  
  295. >Why not put in ICD's AdSpeed in your STE, this will give it the 16mhz cpu.
  296. >speed.
  297. >From what I know in the Mega STE, its only the cpu that has the option
  298. >to run at 16mhz, is this not Ataries version of AdSpeed, this would be a far
  299. >cheaper alternative, about $340 from what I can remember.
  300. >
  301. >Mind you I stand to be corrected on this, if my interpretation is incorrect.
  302.  
  303. Has anyone got any info on this upgrade - what exaclty does it do, how
  304. compatible is it, can it be turned of for things that don't run at 16mhz
  305. (ie games), where can I buy one in the UK etc !
  306.  
  307. Please send any info here or by email to me.
  308.  
  309. Cheers
  310.  
  311. Steve - csuab@uk.ac.warwick.cu
  312.  
  313. PS How the hell do you get a .sig included?!
  314.  
  315. ------------------------------
  316.  
  317. Date: 8 May 91 18:28:23 GMT
  318. From: mcrware!mwca!bill@uunet.uu.net (Bill Sheppard)
  319. Subject: Multisynch Monitors
  320. To: Info-Atari16@naucse.cse.nau.edu
  321.  
  322. In article <1991May7.200309.9727@umiami.ir.miami.edu>
  323.  dlk0ms9s@umiami.ir.miami.edu writes:
  324. >
  325. >
  326. >  I am planning to upgrade this summer to a multisynch monitor from my SC1224
  327. >and was wondering what type of multisynch to get.  I remember reading somehwere
  328. >that it HAS to be CGA compatable.  But I am not sure about that.  I am looking
  329. >at the Panasonic C-1335 or 1381.  Any info would be greatly apreciated.
  330.  
  331. The monitor should _not_ be CGA compatible - CGA is digital, the ST needs
  332. analog.  The Pansonic C1391 should work nicely; the C1381 won't sync low
  333. enough (15.75KHz is needed) for the ST in color.  Don't know about the
  334. C-1335.  Others known to work include the NEC Multisync 3D (and presumably
  335. 4D and 5D, big bucks), the Sony 1302 and 1304; most others should also work
  336. if they sync slowly enough.
  337. --
  338.  ##############################################################################
  339.  # Bill Sheppard  --  bills@microware.com  --  {uunet,sun}!mcrware!mwca!bill  #
  340.  # Microware Systems Corporation  ---  OS-9: Seven generations beyond OS/2!!  #
  341.  ######Opinions expressed are my own, though you'd be wise to adopt them!######
  342.  
  343. ------------------------------
  344.  
  345. Date: 8 May 91 13:55:01 GMT
  346. From: noao!ncar!zaphod.mps.ohio-state.edu!samsung!nstar!syscon!miked@arizona.edu
  347.  (Mike DeMetz)
  348. Subject: Multisynch Monitors
  349. To: Info-Atari16@naucse.cse.nau.edu
  350.  
  351. dlk0ms9s@umiami.ir.miami.edu writes:
  352.  
  353.  
  354.  
  355. >  I am planning to upgrade this summer to a multisynch monitor from my SC1224
  356. >and was wondering what type of multisynch to get.  I remember reading somehwere
  357. >that it HAS to be CGA compatable.  But I am not sure about that.  I am looking
  358. >at the Panasonic C-1335 or 1381.  Any info would be greatly apreciated.
  359.  
  360. Well I don't know what you mean by a CGA cpmpatable. Multisyncs should handle
  361. about everthing. They have an Analog input which is what you want and a TTL
  362. input for CGA/EGA.Don't confuse multiscan monitors with multisync. The Sony
  363. 13xx series work as should most ohters.
  364.  
  365. ------------------------------
  366.  
  367. Date: Wed, 8 May 91 12:52:19 WET DST
  368. From: Mr I C Mccall <csd015@central1.lancaster.ac.uk>
  369. Subject: Neodesk 3
  370. To: Info-Atari16@naucse.cse.nau.edu
  371.  
  372. I'm trying to use Mint with this program, and can't get it to work. I
  373. think it's because it states that Mint reserves all CNTRL-ALT
  374. combinations for itself, whilst Neodesk 3 installs a CNTRL-ALT-DEL
  375. reboot sequence. Has anyone got these two working together?
  376.  
  377. Meanwhile, I heard of a patch on Z*Net recently to upgrade Neodesk, but
  378. it stated that US master disks was required. I have the British master
  379. disks, does anyone know if the patch is available for these yet?
  380.  
  381. And to close, some suggestions for improvements to Neodesk. I like the
  382. idea of installing a custom file-viewer, and feel that this principle
  383. should be extended. If a custom file-viewer, why not a custom formatter?
  384. And if a custom formatter, why not a custom disk copier? I'd like to be
  385. able to have something like DC-Format and Fastcopy III as part of my
  386. desktop, at the moment I've got them installed as desktop icons but it's
  387. not quite the same thing, is it?
  388.  
  389. Any comments, and particularly some REPLIES to questions, would be
  390. welcomed. Since I've been using this net I've only ever had two replies
  391. (well done those two!), so if anyone knows anything, even if it's just a
  392. 'no, nothing's available yet', please let me know. I'm still after a
  393. 50hz Spectrum 512 viewer, by the way! :-)
  394.  
  395.  
  396. Cheers,
  397.         Ian McCall (csd015@uk.ac.lancs.cent1)
  398.  
  399. ------------------------------
  400.  
  401. Date: 7 May 91 00:36:49 GMT
  402. From: noao!ncar!zaphod.mps.ohio-state.edu!n8emr!bluemoon!dddean@arizona.edu
  403.  (David D. Dean)
  404. Subject: One Last Wish
  405. To: Info-Atari16@naucse.cse.nau.edu
  406.  
  407. Hello:
  408.  
  409.  
  410.  
  411. I have been a user of the News Net for some time, and I know that
  412.  
  413. whenever someone posts somethig totaly irrelevent to the sig that
  414.  
  415. he/she gets flamed something fierce!
  416.  
  417.  
  418.  
  419. That is why I am donning my fire-proof suit to make this little post.
  420.  
  421. It is one that I doubt anyone will flame me for, but I thought I'd
  422.  
  423. be safe.
  424.  
  425.  
  426.  
  427. You see, there is a seven year old dying, and his one last wish was
  428.  
  429. not that he get everything that everyone wants, but instead is a
  430.  
  431. fairly reachable goal.  I think that if you were to comletely read
  432.  
  433. what I am going to show you; you too will agree.
  434.  
  435.  
  436.  
  437.  
  438.  
  439. The following is a text file that I found very touching, and thought
  440.  
  441. that others could help out:
  442.  
  443.  
  444.  
  445.  
  446.  
  447.                                 LAST WISH
  448.  
  449.  
  450.  
  451.           A brain tumor is cutting short the life of seven-year-old
  452.  
  453. Craig Shergold.  His Last Wish doesn't seem very much to ask; simply
  454.  
  455. that he receive some Get Well cards---hopefully enough to break The
  456.  
  457. Guiness Book of World Records.  If everyone reading this message
  458.  
  459. could send him a card (or several!) and post this note on any
  460.  
  461. bulletin boards or in any publications he/she may be in contact with,
  462.  
  463. or even word of mouth, surely Craig's Last Wish will come true.
  464.  
  465. Send your card(s) to:
  466.  
  467.  
  468.  
  469.                            Craig Shergold
  470.  
  471.                            c/o Children's Wish Foundation
  472.  
  473.                            Suite 100
  474.  
  475.                            3200 Perimeter Center E.
  476.  
  477.                            Atlanta, Ga. 39346
  478.  
  479.  
  480.  
  481. P.S.  If you are a person who believes in prayer, a prayer for this
  482.  
  483. young man may, perhaps, find its way into another Book---and who
  484.  
  485. knows?
  486.  
  487.  
  488.  
  489.       He may just get a Get Well "wish" from someone else.
  490.  
  491.  
  492.  
  493. --------------------------------------------------------------------
  494.  
  495.  
  496.  
  497. Please, if you can, send him at least ONE card.  I know about the
  498.  
  499. vastness of the net, and I think that we can all fulfill this young
  500.  
  501. man's wish.
  502.  
  503.  
  504.  
  505. To do this, would be a kindness that eveyone can show!
  506.  
  507. Thank you for taking your time and reading this.  Maybe some of us
  508.  
  509. can relate to this.  Maybe others can do more to help... who knows...
  510.  
  511.  
  512. You can send any replies to:
  513. David D. Dean, President       David D. Dean, Vice Chairman
  514. Explorer Post 891              Exploring Officer's Association
  515. AT&T Systems/Bell Labs         Central Ohio Council
  516. dddean@bluemoon.uucp           Columbus, OH  43227
  517.  
  518. **** Any opinions are that of the author, and NOT of AT&T ****
  519.  
  520. ------------------------------
  521.  
  522. Date: 8 May 91 15:37:26 GMT
  523. From:
  524.  noao!ncar!elroy.jpl.nasa.gov!sdd.hp.com!caen!umich!wsu-cs!jake!pbh@arizona.edu
  525.  (Patrick Haggood)
  526. Subject: Question: Pascal for the ST?
  527. To: Info-Atari16@naucse.cse.nau.edu
  528.  
  529. In article <1991May5.214847.19224@mailer.cc.fsu.edu> boyd@nu.cs.fsu.edu (Mickey
  530.  Boyd) writes:
  531. >
  532. >I still recommend that anyone getting ready to put $80-$100 in a
  533. >compiler to purchase Prospero, or Turbo, or Lattice, or any of the other
  534. >european compilers over Laser, MWC, Personal Pascal, etc.  I happen to like
  535. >upgrades and updates :-).  Of course, if an American product is better, and
  536. >looks to already be stable, and does not inherently require lots of company
  537. >support, I will buy it (mom, apple pie, etc).  Just trying to protect my
  538. >$$$$$.
  539.  
  540. Actually, I own MWC and have pretty much settled on it.  It really
  541. depends on your use for the compiler.  MWC seems to be the best
  542. Unix-compatible compiler available for the ST (this side of GCC, but I
  543. humbly put forth that only crazy people use it without 4M, and I don't
  544. have 4M).  If I were developing software for GEM on the Atari, I'd
  545. probably choose something different like Prospero, Laser or Turbo C.
  546.  
  547. >The above and the previous post was IMHO.  Have a nice day.
  548. >             Mickey R. Boyd          |  "Kirk to Enterprise.  All clear
  549.  
  550. --
  551. Patrick B. Haggood
  552. Wayne STate University
  553. Detroit, MI
  554. Physics - Class of 1991 (-2?)
  555.  
  556. ------------------------------
  557.  
  558. Date: 8 May 91 05:50:08 GMT
  559. From:
  560.  noao!ncar!zaphod.mps.ohio-state.edu!rpi!uupsi!cci632!ritcsh!ultb!drp9500@arizon
  561.  a.edu (D.R. Paradis )
  562. Subject: Sounds files from Australia
  563. To: Info-Atari16@naucse.cse.nau.edu
  564.  
  565. In article <1991May7.183142.16719@oz.plymouth.edu> pyr579@oz.plymouth.edu
  566.  (Technoid) writes:
  567. >Hello,
  568. >
  569. >       I FTP a lot and have found a site in Australia which contains sound
  570. >files of some sort. But the extender is .au which I assume means Australian
  571. >University since that is the site. This is not an ST site, they have many
  572. >GIFS and sound files though. Has anyone tried to use these files on the
  573. >ST. I ask because most are very ( 600 - 800K ) songs and I would rather ask
  574. >than try and fail ( 2400 baud is slow ). Anyone with any info, please Email.
  575. >
  576. >Thanks,
  577. >
  578. >       Stephan
  579. >
  580. >
  581. >
  582. >--
  583. >\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/
  584. >  pyr579@oz.plymouth.edu      Stephan R. Cleaves      Salamanders Are Cool...
  585. >/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\
  586.  
  587.  sound files with the .au extender are Sun Audio files.
  588.  
  589. As of now I cannot figure how to convert them into ANY format that the
  590. ST can handle.  :-(
  591.  
  592.   I know a site in Europe that have files over 3 MEGS EACH!!!  I'd love
  593. to hear them!!!!!  But I can't!!!!!!!
  594.  
  595.  
  596.  
  597. --
  598. ************************************************************************
  599. *    Just because I'm a film major        |      < Net-address >       *
  600. * doesn't mean I'm a Spielber-wanna-be....|                            *
  601. *       I'm a Lynch-wanna-be!             |  drp9500@ultb.isc.rit.edu  *
  602.  
  603. ------------------------------
  604.  
  605. Date: 8 May 91 15:43:50 GMT
  606. From: bonnie.concordia.ca!daily-planet.concordia.ca!agostino@uunet.uu.net
  607.  (Agostino Deligia)
  608. Subject: ST zoo for Unix
  609. To: Info-Atari16@naucse.cse.nau.edu
  610.  
  611. Hello,
  612.  
  613.         Does anyone know of a "zoo" for the ST which will run on Unix (Sun3
  614. running SunOS 4.1).  I have this 500k ST zoo file on a Sun which I need to d/l
  615. to my ST.  However, it would be better if I could unzoo the file on the
  616. Sun and d/l the smaller constituents separately.
  617.  
  618. Thank-you for any help you can give.
  619.  
  620. Agostino
  621.  
  622. --
  623.        OO OO     Agostino Deligia
  624.       O O   O    Systems Architecture
  625.      O  O   O    Concordia University, Montreal (Canada)
  626.     O   OOOO     agostino@concour.cs.concordia.ca
  627.  
  628. ------------------------------
  629.  
  630. Date: 8 May 91 17:05:13 GMT
  631. From:
  632.  noao!ncar!elroy.jpl.nasa.gov!sdd.hp.com!wuarchive!rex!ukma!aunro!ersys!mforget@
  633.  arizona.edu (Michel Forget)
  634. Subject: TOS Command Line
  635. To: Info-Atari16@naucse.cse.nau.edu
  636.  
  637. > All that's necessary is that the parent process and the child process agree
  638. > on whatever extended argument-passing convention is in use.
  639.  
  640. Uh-oh.  I am trying to pass long command lines to RZ.TTP (The Zmodem File
  641. Transfer Program) for batch Uploading and Downloading.  The problem with
  642. the limit becomes obvious when you realize how few pathnames can be put
  643. on an 80 (or even 125) character command line.  I wrote a program that
  644. will capture the command line when it is run and display it, and will try
  645. it on other programs that use SZ.  I don't think that it supports the
  646. XARG convention you mentioned.  Any other ideas?
  647.  
  648.  
  649. <<  ersys!mforget@nro.cs.athabascau.ca  >>
  650. <<  or in the language that PEOPLE use  >>
  651. <<  Michel Forget...:)                  >>
  652.  
  653. ------------------------------
  654.  
  655. Date: 9 May 91 00:10:22 GMT
  656. From: noao!ncar!elroy.jpl.nasa.gov!jato!vsnyder@arizona.edu (Van Snyder)
  657. Subject: WordPerfect update - STe support
  658. To: Info-Atari16@naucse.cse.nau.edu
  659.  
  660. In article <1991May07.134546.6630@actrix.gen.nz>
  661.  Roger.Sheppard@bbs.actrix.gen.nz writes:
  662. >In article <1991May7.025043.13220@milton.u.washington.edu>
  663.  iho@akbar.cac.washington.edu (Il Oh) writes:
  664. >> larock@software.software.org (Curt Larock) writes:
  665. >> >I just got the latest WordPerfect update, dated April 18, 1991.
  666. >> >According to the release notes WP now supports the STe (TT support
  667. >> >was in the December release).  There are also some minor bug fixes.
  668. >>
  669. >> Do they still have no plans to port 5.0 (or 5.1)?  Until they do, I'll
  670. >> happily use MS Word under Spectre GCR.  I bought a copy of WP for Atari,
  671. >> WP 5.1 for DOS, and MS Word for Mac.  I just use the one that works well.
  672. >
  673. >Well from what I have just read in Znet or was it ST-Report, that
  674. >WordPerfect has droped Atari all together...
  675. >There was some thing about the Germans did not want a USA product
  676. >bundled with Atari computers,(about 10,000 units),
  677. >they wanted a German product instead..
  678. >WordPerfect did not like this, and decided that they could no longer
  679. >afford to support the Atari Version..
  680. >
  681. >Correct me if I'am wrong, but this is the way I read it..
  682. >--
  683. >Roger W. Sheppard   85 Donovan Rd, Kapiti New Zealand...
  684.  
  685. I just called WordPerfect.  They're shipping the April Upgrade.  They're
  686. NOT quitting the Atari market, at least not in the U.S.
  687.  
  688. --
  689. vsnyder@jato.Jpl.Nasa.Gov
  690. ames!elroy!jato!vsnyder
  691. vsnyder@jato.uucp
  692.  
  693. ------------------------------
  694.  
  695. End of Info-Atari16 Digest
  696. ******************************
  697.